home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / csspcb.zip / PCBOARD.SIM
Text File  |  1991-02-01  |  2KB  |  29 lines

  1. /////////////////////////////  PCBOARD.SIM  /////////////////////////////////
  2. //                                                                         //
  3. // This is a sample SIMPLE script for logging on to a PCBoard based        //
  4. // system. The logon questions are handled in any order, and optional      //
  5. // prompts are ok.                                                         //
  6. //                                                                         //
  7. // Put your name in the line that says ASSIGN STRING1.  The script will    //
  8. // get the proper password from the dialing directory, CSS puts the        //
  9. // password in the variable BBSPASSWORD.                                   //
  10. //                                                                         //
  11. /////////////////////////////////////////////////////////////////////////////
  12.  
  13. ASSIGN STRING1, "Your Name"      // Put your name (in Quotes!) here.
  14.  
  15. ALARM 1
  16. STARTWHEN
  17.   WHENEVER "(Enter)=no change?"  THENDO SEND HITENTER        // Language
  18.   WHENEVER "(Enter)=no?"         THENDO SEND "y q" HITENTER  // Graphics
  19.   WHENEVER "first name?"         THENDO SEND STRING1 HITENTER
  20.   WHENEVER "correct?"            THENDO SEND HITENTER        // Name verify
  21.   WHENEVER "Password"            THENDO SEND BBSPASSWORD HITENTER
  22.   WHENEVER "More?"               THENDO SEND "n" HITENTER    // PCBoard More
  23.   WHENEVER "More:"               THENDO SEND "n" HITENTER    // ProLogon More
  24.   WHENEVER "(Enter)=yes?"        THENDO SEND "n" HITENTER    // Mail scan
  25.   WHENEVER "(Enter) to continue" THENDO SEND HITENTER
  26.   WHENEVER "Command?"            THENDO QUITWHEN             // Main prompt
  27.   WHENEVER "Main Menu Command"   THENDO QUITWHEN             // Main prompt
  28. ENDWHEN
  29.